# Makefile
FLAGS = -g -std=c99 -Wall

all:	hello

hello:	hello.c
	gcc ${FLAGS} hello.c -o hello

clean:	
	rm -f hello
